﻿@font-face {
    font-family: 'Futura';
    src: url('Futura Medium.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
body, html {
    height: 100%; /* Ensures the body and html elements cover the full height of the viewport */
    margin: 0; /* Removes default browser margins, preventing extra whitespace */
}

body {
    background-position: center; /* Centers the image horizontally and vertically */
    background-repeat: no-repeat; /* Prevents the image from tiling */
    background-size: cover; /* Scales the image to cover the entire container while maintaining its aspect ratio */
    background-attachment: fixed; /* Keeps the background fixed in place when content scrolls */
    background-image: url("../imagens/tela_sindicalize.jpg"); /* Specify the path to your image file */
    font-family: 'Futura', 'Trebuchet MS', Arial, sans-serif;
}

.header-minimalist {
    display: flex;
    justify-content: space-between; /* Distribui o logo e os links */
    align-items: center; /* Alinha verticalmente */
    padding: 10px 5%; /* Espaçamento interno */
   
    box-shadow: 0 2px 4px rgba(0,0,0,0.05); /* Sombra sutil */
   
}

.logo a {
    text-decoration: none;
    color: #333; /* Cor escura para contraste */
    font-size: 1.5rem; /* Tamanho do logo */
    font-weight: bold;
}

.nav-links a {
    text-decoration: none;
    color: white;
    margin-left: 20px; /* Espaçamento entre os links */
    font-size: 1.2rem;
    transition: color 0.3s;
}

    .nav-links a:hover {
        color: greenyellow; /* Cor ao passar o mouse */
    }

a:link {
    color: white; /* Unvisited link color */
    text-decoration: none; /* Removes underline by default */
}

a:visited {
    color: white; /* Visited link color */
}

a:hover {
    color: greenyellow; /* Color when the mouse hovers over it */
    text-decoration: underline; /* Adds underline on hover */
}

#esquerda {
    color: white;
    font-size: 2rem;
    top: 30%;
    left: 5%;
    position: absolute;
}

#fonte {
    color: white;
    font-size: 1.5rem;
}

.table-container {
    width: 100%;
    overflow-x: auto; /* Adiciona barra de rolagem horizontal se necessário */
    font-family: 'Futura', 'Trebuchet MS', Arial, sans-serif;
}

table {
    width: 100%; /* Ocupa a largura do contêiner */
    min-width: 600px; /* Impede que a tabela fique muito estreita no celular */
    font-family: 'Futura', 'Trebuchet MS', Arial, sans-serif;
}